home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SPAWNO41.ARJ / EXTRACT.BAT < prev    next >
DOS Batch File  |  1991-11-16  |  539b  |  18 lines

  1. @ECHO OFF
  2. IF "%1" == "" GOTO USAGE
  3. SET LIB_=TLIB
  4. IF NOT "%2" == "" SET LIB_=%2
  5.  
  6. %LIB_% spawn%1 *_spawnv%1 *swap_xms *swap_dsk *swap_ext,nul,spawn%1 >nul
  7. GOTO END
  8.  
  9. :USAGE
  10. ECHO. Usage: %0 {mdl} [{librarian}]
  11. ECHO.      where {mdl} is the memory model, T S M C L H
  12. ECHO.        and {librarian} is the program to run [default TLIB]
  13. ECHO. Extracts the object modules for which source is not included in the
  14. ECHO. public distribution of SPAWNO, thus permitting use of the Makefile
  15. ECHO. to recreate the SPAWNO library.
  16. :END
  17. SET LIB_=
  18.